
.section_about_us{
    display: flex;
    flex-direction: row;
    
}

.section_about_us img{
    width: 40%;
    height: auto;
    align-self: flex-end;
}

.div_about_us_description{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
    padding-right: 20px;
    padding-bottom: 30px;
}

.section_services{
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    padding-bottom: 40px;
    padding-top: 20px;
}

.section_services h2{
    color: var(--light-secondary-color);
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.div_services_elements{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.div_services_elements_container{
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.div_services_element{
    background-color: var(--light-secondary-color);
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(124, 179, 66, 0.3);
    box-shadow: 0 15px 45px rgba(26, 93, 59, 0.35), 0 6px 18px rgba(26, 93, 59, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
}

.div_services_element:hover{
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(26, 93, 59, 0.45), 0 10px 30px rgba(26, 93, 59, 0.35);
    border: 2px solid rgba(124, 179, 66, 0.5);
    cursor: pointer;
}

.div_services_img_cont{
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 55%;
    position: relative;
}

.div_services_element img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}

.div_services_element:hover img{
    transform: scale(1.05);
}

.div_services_content{
    padding: 25px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, var(--light-secondary-color) 0%, var(--light-primary-color) 100%);
}

.div_services_content h3{
    padding-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3em;
    transition: color 0.3s ease;
}

.div_services_element:hover .div_services_content h3{
    color: var(--secondary-color);
}

.div_services_content p{
    text-align: center;
    color: var(--secondary-text-color);
    line-height: 1.6;
}


.section_karte{
    position: relative;
    width: auto;
    background-color: var(--light-primary-color);
    
}


.section_karte img{
    position: absolute;
    height: 100%;
    z-index: 200;
    filter: blur(10px);
}

.div_karte_content{
    position: absolute;
    height: 100%;
    padding-left: 30px;
    padding-right: 30px;
    margin-right: 20%;
    width: auto;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    z-index: 300;
    gap: 5%;
}

.div_karte_content p{
    text-align: center;
    color: whitesmoke;
}

.div_karte_content a{
    text-decoration: none;
    color: whitesmoke
}

.div_karte_content button{
    font-weight: bold;
    font-size: inherit;
    background-color: none;
    
    padding: 5px;
}

#google-maps-container{
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    height: 0;
    overflow: hidden;
}

#google-maps-container iframe{
    position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
}

.section_kontakt{
    padding-bottom: 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.section_kontakt h2{
    color: var(--light-secondary-color);
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.div_kontakt_container{
    background-color: var(--light-secondary-color);
    display: flex;
    flex-direction: row;
    gap: 8%;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(124, 179, 66, 0.3);
    box-shadow: 0 15px 45px rgba(26, 93, 59, 0.35), 0 6px 18px rgba(26, 93, 59, 0.25);
    margin: 0 20px;
}


.div_kontakt_content_online{
    display: flex;
    flex-direction: column;
}

.div_kontakt_content_online a{
    text-decoration: none;
    color: var(--primary-text-color);
}




.scroll-top-btn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	padding: 15px 20px;
	font-size: 20px;
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--light-accent-color) 100%);
	color: var(--light-secondary-color);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	box-shadow: 0 6px 20px var(--card-shadow);
	transition: all 0.3s ease;
}

.scroll-top-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px var(--hover-shadow);
}

@media(max-width:1450px){
  

    .section_global{
        padding-left: 15%;
        padding-right: 15%;
    }

    .div_karte_content{
        margin-right: 15%;
    }
}

@media(max-width:1100px){

    .div_services_element{
        width: 100%;
    }

    .div_services_elements_container{
        flex-direction: column;
    }

    body{
        font-size: 15px;
    }
}

@media(max-width:700px){

    body{
        font-size: 10px;
    }
}

